home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _IEImgGetCollection.au3 < prev    next >
Text File  |  2006-07-14  |  1KB  |  29 lines

  1. ; *******************************************************
  2. ; Example 1 - Create browser at AutoIt homepage, get a reference to
  3. ;                the 6th Image on the page (note: the first image is index 0)
  4. ;                and display information about it
  5. ; *******************************************************
  6. ;
  7. #include <IE.au3>
  8. $oIE = _IECreate ("http://www.autoitscript.com/")
  9. $oImg = _IEImgGetCollection ($oIE, 5)
  10. $sInfo = "Src: " & $oImg.src & @CR
  11. $sInfo &= "FileName: " & $oImg.nameProp & @CR
  12. $sInfo &= "Height: " & $oImg.height & @CR
  13. $sInfo &= "Width: " & $oImg.width & @CR
  14. $sInfo &= "Border: " & $oImg.border
  15. MsgBox(0, "4th Image Info", $sInfo)
  16.  
  17. ; *******************************************************
  18. ; Example 2 - Create browser at AutoIt homepage, get Img collection
  19. ;                and display src URL for each
  20. ; *******************************************************
  21. ;
  22. #include <IE.au3>
  23. $oIE = _IECreate ("http://www.autoitscript.com/")
  24. $oImgs = _IEImgGetCollection ($oIE)
  25. $iNumImg = @extended
  26. MsgBox(0, "Img Info", "There are " & $iNumImg & " images on the page")
  27. For $oImg In $oImgs
  28.     MsgBox(0, "Img Info", "src=" & $oImg.src)
  29. Next